/*-*-C-*-
 * !Window toolbars include file
 */


#ifndef __defined_toolbars_h
#define __defined_toolbars_h


extern error * toolbars_load_prototypes (void);
extern error * toolbars_update_dbox (
    WindowObjPtr window,
    Bool contents,
    Bool title
);
extern error * toolbars_open_dbox (WindowObjPtr window);
extern error * toolbars_dbox_mouse_click (
    MouseClickPtr mouse,
    unsigned int modifiers,
    WindowObjPtr window
);
extern error * toolbars_reopen_dbox (WindowPtr win, WindowObjPtr window);
extern error * toolbars_close_dbox (WindowObjPtr window);
extern error * toolbars_dbox_key_pressed (
    WindowObjPtr window,
    KeyPressPtr key,
    Bool *consumed
);
extern Bool toolbars_drop_icon (
    int icon
);
extern error * toolbars_object_drop (
    WindowObjPtr window,
    int icon,
    ObjectClass class,
    char *name
);


#endif
